Claude Code Plugins

Community-maintained marketplace

Feedback

Quality Vectors in Code Comments

@zarvent/voice2machine
0
0

Quality vectors for code comments

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name Quality Vectors in Code Comments
description Quality vectors for code comments

Analyze whether the comment meets the following criteria:

Code Comment Quality Review Guide

  1. Does it provide real value?
    • Does it explain the "why" instead of just the "what"?
    • Does it clarify non-obvious decisions or complex business logic?
    • Or does it simply repeat what the code already clearly states?
  2. Is it necessary or redundant?
    • Is the code so self-explanatory that the comment is unnecessary?
    • Could the code be improved (variable/function names) to eliminate the need for the comment?
    • Does it add context that the code alone cannot express?
  3. Will it stand the test of time?
    • Will it remain valid after refactoring?
    • Is it abstract enough to survive implementation changes?
    • Or does it describe technical details that will soon change, becoming "documentary technical debt"?
  4. Is it concise without omitting critical details?
    • Does it balance brevity with completeness?
    • Does it include enough information to understand the full context?
    • Does it avoid unnecessary verbosity while maintaining clarity?
  5. Is it accurate and explanatory?
    • Does it accurately describe what the code does?
    • Does it explain special cases, edge cases, or non-obvious behaviors?
    • Does it use appropriate technical language without ambiguity?
    • Does it document limitations, assumptions, or important dependencies?